fa0bf3516e57b19eb2704aa0c6eb36fcdf464086,webBudget/src/main/java/br/com/webbudget/infraestructure/configuration/SecurityConfiguration.java,SecurityConfiguration,configureHttpSecurity,#SecurityConfigurationEvent#,112

Before Change


                    .authorizeWith().role(this.authorization.CONTACT_VIEW)
                .forPath("/main/entries/costCenter/*")
                    .authorizeWith().role(this.authorization.COST_CENTER_VIEW)
                .forPath("/main/financial/movement/*")
                    .authorizeWith().role(this.authorization.MOVEMENT_VIEW)
                .forPath("/main/entries/wallets/*")
                    .authorizeWith().role(this.authorization.WALLET_VIEW)
                .forPath("/main/financial/cardInvoice/*")
                    .authorizeWith().role(this.authorization.CARD_INVOICE_VIEW)
                .forPath("/main/entries/movementClass/*")
                    .authorizeWith().role(this.authorization.MOVEMENT_CLASS_VIEW)
                .forPath("/main/financial/transference/*")

After Change


                .forPath("/main/entries/movementClass/*")
                    .authorizeWith()
                        .role(this.authorization.MOVEMENT_CLASS_VIEW)
                .forPath("/main/financial/movement/*")
                    .authorizeWith()
                        .role(
                            this.authorization.MOVEMENT_VIEW, 
                            this.authorization.FIXED_MOVEMENT_VIEW)
                .forPath("/main/financial/cardInvoice/*")